home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-106.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  89 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:106
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14088);
  12.  script_bugtraq_id(8875);
  13.  script_version ("$Revision: 1.3 $");
  14.  script_cve_id("CAN-2003-0853", "CAN-2003-0854");
  15.  
  16.  name["english"] = "MDKSA-2003:106: fileutils/coreutils";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:106 (fileutils/coreutils).
  22.  
  23.  
  24. A memory starvation denial of service vulnerability in the ls program was
  25. discovered by Georgi Guninski. It is possible to allocate a huge amount of
  26. memory by specifying certain command-line arguments. It is also possible to
  27. exploit this remotely via programs that call ls such as wu-ftpd (although
  28. wu-ftpd is no longer shipped with Mandrake Linux).
  29. Likewise, a non-exploitable integer overflow problem was discovered in ls, which
  30. can be used to crash ls by specifying certain command-line arguments. This can
  31. also be triggered via remotely accessible services such as wu-ftpd.
  32. The provided packages include a patched ls to fix these problems.
  33.  
  34.  
  35. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:106
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the fileutils/coreutils package";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Mandrake Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/Mandrake/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"fileutils-4.1.11-6.1.90mdk", release:"MDK9.0", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if ( rpm_check( reference:"coreutils-4.5.7-1.1.91mdk", release:"MDK9.1", yank:"mdk") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67. if ( rpm_check( reference:"coreutils-doc-4.5.7-1.1.91mdk", release:"MDK9.1", yank:"mdk") )
  68. {
  69.  security_hole(0);
  70.  exit(0);
  71. }
  72. if ( rpm_check( reference:"coreutils-5.0-6.1.92mdk", release:"MDK9.2", yank:"mdk") )
  73. {
  74.  security_hole(0);
  75.  exit(0);
  76. }
  77. if ( rpm_check( reference:"coreutils-doc-5.0-6.1.92mdk", release:"MDK9.2", yank:"mdk") )
  78. {
  79.  security_hole(0);
  80.  exit(0);
  81. }
  82. if (rpm_exists(rpm:"fileutils-", release:"MDK9.0")
  83.  || rpm_exists(rpm:"fileutils-", release:"MDK9.1")
  84.  || rpm_exists(rpm:"fileutils-", release:"MDK9.2") )
  85. {
  86.  set_kb_item(name:"CAN-2003-0853", value:TRUE);
  87.  set_kb_item(name:"CAN-2003-0854", value:TRUE);
  88. }
  89.